/* --- FUENTES --- */


html {
    scroll-behavior: smooth;
}

:root {
    --color-yellow: #FFC600;
    --color-orange: #E64A19;
    --color-red-btn: #D50000;
    --color-dark-brown: #2D1A10;
    --color-brown: #743317;
    --color-white: #ffffff;
    --font-head: 'hackney', sans-serif;
    --font-body: 'Averia Libre', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    width: 100%;
    overflow-x: hidden;
    background-color: #FFC600;
}

/* --- HEADER / TOP BAR --- */
.top-bar-container {
    position: relative;
    width: 100%;
    background-image: url('../img/h1.webp');
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 100;
    padding-bottom: 60px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    font-family: var(--font-head);
}

.top-left a {
    text-decoration: none;
    color: var(--color-white);
    margin-right: 15px;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 3px;
    opacity: 0.9;
    padding: 12px 20px;
    display: inline-block;
    border-radius: 8px;
    font-family: var(--font-body);
}

.top-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    text-align: center;
    /* Forzamos que esté por encima de TODO */
    z-index: 9999 !important;
}

.top-center a.logo {
    display: block;
    position: relative;
    z-index: 10000;
}

.top-center a.logo img {
    display: block;
    margin: 0 auto;
    /* Si el logo se ve pequeño o raro, asegúrate que tenga posición relativa */
    position: relative;
}

.top-center .event-info {
    color: var(--color-orange);
    /* Escala con el ancho: 3rem a partir de 1920px (igual que antes) y se va
       reduciendo en portátiles para que la fecha larga de Buenos Aires no se
       solape con los iconos de la derecha */
    font-size: clamp(1.6rem, 2.5vw, 3rem);
    letter-spacing: 0.5px;
    line-height: 1;
    display: block;
    white-space: nowrap;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.top-right {
    display: flex;
    align-items: center;
}

.socials a {
    margin: 0 5px;
}

.btn-top-red {
    background-image: url("../img/entradas.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* CORRECCIÓN: Asegura que el fondo rojo cubra el botón */
    background-position: center center;
    padding: 14px 30px 16px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.0rem;
    margin-left: 10px;
    font-weight: normal;
    display: inline-block;
}

.btn-top-red .highlight-yellow {
    color: var(--color-yellow);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
    margin-top: -60px;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* --- CONTENIDO HERO --- */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-logo {
    width: 10%;
    max-width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(none);
    box-shadow: none;
}

.hero-main-title {
    font-family: var(--font-head);
    font-size: 4.5rem;
    font-weight: normal;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 15px 0;
    line-height: 0.85;
    text-shadow: 4px 4px 0px #000;
    letter-spacing: 8px;
}

.highlight-yellow {
    color: var(--color-yellow);
}

.highlight-brown {
    color: var(--color-brown);
}

.highlight-red-dark {
    color: #9D100D;
}

.hero-cta-container {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    max-width: 500px;
    width: 90%;
    transition: transform 0.3s;
    z-index: 20;
    text-decoration: none;
}

.hero-cta-container:hover {
    transform: scale(1.02);
}

.hero-cta-bg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-cta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -35%);
    width: 100%;
    text-align: center;
    font-family: var(--font-head);
    color: var(--color-white);
    font-size: 2.4rem;
    font-weight: normal;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding-bottom: 15px;
}

.hero-cta-text .highlight-yellow {
    color: var(--color-yellow);
}

.grunge-border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: cover;
    object-position: top;
    z-index: 5;
    pointer-events: none;
}

/* --- INTRO SECTION --- */
.intro-section {
    position: relative;
    z-index: 2;
    padding: 45px 20px 100px 20px;
    text-align: center;
    margin-top: -1px;
    background-color: var(--color-yellow);
    background-image: url('../img/fondo_amarillo.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.lead-text {
    font-family: var(--font-body);
    color: var(--color-white);
    max-width: 1300px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.lead-text.text-normal {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
}

.lead-text.text-highlight {
    font-size: 3.2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-top: 0;
}

/* --- TICKETS SECTION (REDISEÑO FINAL AJUSTADO) --- */
.tickets-section {
    background-color: #FC8A01;
    /* --- CORRECCIÓN: IMAGEN DE FONDO NARANJA --- */
    background-image: url('../img/fondo_naranja.webp');
    /* Asegúrate de que este archivo exista en la carpeta img */
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;

    padding: 50px 20px;
    text-align: center;
    position: relative;
    z-index: 20;
}

.section-title {
    font-family: var(--font-head);
    font-size: 4rem;
    margin-bottom: 60px;
    color: var(--color-brown);
    font-weight: normal;
    letter-spacing: 2px
}

.section-title-faq {
    font-family: var(--font-head);
    font-size: 4rem;
    color: var(--color-brown);
    font-weight: normal;
    display: flex;
    justify-content: center;
}

.tickets-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* TARJETA TIPO TICKET (CONTENEDOR PRINCIPAL) */
.ticket-card {
    background-image: url('../img/ticket.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    width: 280px;
}

/* PARTE SUPERIOR */
.ticket-top {
    background-color: transparent;
    padding: 35px 20px 0px 20px;
    text-align: center;
}

.ticket-top .ticket-subtitle {
    font-family: var(--font-body);
    color: var(--color-brown);
    font-size: 1.2rem;
    text-transform: uppercase;
    padding-bottom: 25px;
    /* Sin nowrap: los rótulos largos deben partir antes que salirse de la tarjeta */
    white-space: normal;
}

.ticket-top h3 {
    font-family: var(--font-head);
    color: var(--color-brown);
    font-size: 3.5rem;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: normal;
}

/* BOTÓN COMPRAR */
.btn-buy {
    display: inline-block;
    background-image: url('../img/CuadradoRojo.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;

    color: white;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 1.3rem;
    padding: 10px 30px 12px 30px;
    margin-bottom: 25px;

    /* --- CORRECCIÓN: Margen superior para bajar el botón si es necesario --- */
    margin-top: 20px;

    border: none;
    transform: none;
    transition: transform 0.2s ease;
    letter-spacing: 2px;
}

.btn-buy:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* PRECIOS */
.ticket-price {
    margin-top: 5px;
    margin-bottom: 20px;
}

.price .current {
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 300;
    color: #2D1A10;
    display: block;
    line-height: 1;
}

.price .amount {
    font-family: var(--font-body);
    color: #946e34;
    font-size: 1.4rem;
    display: block;
    font-style: italic;
    padding-bottom: 15px;
}

/* BARRA "INCLUYE" (Parte Baja) */
.ticket-toggle {
    background-image: url('../img/fondoIncluye.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    opacity: 0.9;
    color: white;
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    z-index: 10;
    width: 112%;
    margin-left: -6%;
    margin-top: 5px;
}

.arrow-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    width: 18px;
    height: auto;
    transition: transform 0.3s;
}

.arrow-up {
    display: none;
}

.arrow-down {
    display: inline-block;
}

.ticket-footer.rotated .arrow-up {
    display: inline-block;
}

.ticket-footer.rotated .arrow-down {
    display: none;
}


/* Entradas destacadas (Foodie Pass y Master of Fire) */
.ticket-card.ticket-destacado {
    background-image: url('../img/ticket_important.png');
}

/* Título largo del abono 3 días Friends on Fire: no entra a 3.5rem */
.ticket-6 .ticket-top h3 {
    font-size: 2.1rem;
    line-height: 1;
}

/* --- LAS 6 ENTRADAS EN UNA SOLA FILA (escritorio) ---
   A 280px fijos las seis suman 1980px y la última caía a otra línea.
   La fila se mide en porcentajes (6 tarjetas del 14.1667% + 5 huecos del 3%) y
   la tipografía y los espaciados van en cqw, así que TODO encoge en la misma
   proporción: es la tarjeta original a escala, no una tarjeta apretada. */
@media (min-width: 1101px) {
    .tickets-container {
        flex-wrap: nowrap;
        gap: 3%;
        max-width: 1900px;
        margin: 0 auto;
        container-type: inline-size;
    }

    .ticket-card {
        flex: 0 0 auto;
        width: 14.1667%;
    }

    /* Reserva mientras no haya soporte de container queries */
    .ticket-top h3,
    .price .current {
        font-size: 2.8vw;
    }

    .ticket-6 .ticket-top h3 {
        font-size: 1.7vw;
    }

    .ticket-top .ticket-subtitle,
    .btn-buy {
        font-size: 1vw;
    }

    .price .amount,
    .ticket-toggle {
        font-size: 1.1vw;
    }

    .ticket-content p {
        font-size: 0.76vw;
    }
}

@supports (container-type: inline-size) {
    @media (min-width: 1101px) {
        /* 1 cqw = 1% del ancho de la fila; la tarjeta mide 14.1667 cqw.
           Cada medida es la original en px × 14.1667 / 280. */
        .ticket-top {
            padding: 1.77cqw 1.01cqw 0 1.01cqw;
        }

        /* Cajas de alto FIJO (no min-height) para subtítulo y título: da igual
           que el rótulo ocupe una línea o dos, o que el título lleve un cuerpo
           menor — el botón, el precio y la barra INCLUYE caen siempre al mismo
           alto en las seis tarjetas y en los dos idiomas. */
        .ticket-top .ticket-subtitle {
            font-size: 0.97cqw;
            padding-bottom: 1.26cqw;
            white-space: normal;
            /* interlineado ceñido: los rótulos de dos líneas ("THE ULTIMATE
               GET-TOGETHER") deben leerse como un bloque, no como dos frases */
            line-height: 1.05;
            height: 2.4cqw;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .ticket-top h3 {
            font-size: 2.83cqw;
            height: 5.1cqw;
            display: flex;
            /* pegado abajo: el título de la 6ª tarjeta, más pequeño, no debe
               quedar flotando en mitad de la caja lejos del botón */
            align-items: flex-end;
            justify-content: center;
        }

        /* Título más largo del cartel: cuerpo menor pero el mismo interlineado
           ceñido que el resto (0.9), centrado en la misma caja de 5.1cqw.
           Con nowrap las dos líneas las marca el <br> del copy, no el ancho. */
        .ticket-6 .ticket-top h3 {
            font-size: 1.7cqw;
            line-height: 0.9;
            white-space: nowrap;
        }

        .btn-buy {
            font-size: 1.05cqw;
            padding: 0.51cqw 1.52cqw 0.61cqw 1.52cqw;
            margin-top: 1.01cqw;
            margin-bottom: 1.26cqw;
            letter-spacing: 0.1cqw;
        }

        .price .current {
            font-size: 2.83cqw;
        }

        .price .amount {
            font-size: 1.13cqw;
            padding-bottom: 0.76cqw;
        }

        .ticket-toggle {
            font-size: 1.13cqw;
            padding: 0.76cqw 0;
        }

        .ticket-toggle .arrow-icon {
            width: 0.91cqw;
            margin-left: 0.4cqw;
        }

        .ticket-content {
            padding: 0.51cqw 1.01cqw 1.52cqw 1.01cqw;
        }

        .ticket-content p {
            font-size: 0.77cqw;
            margin-bottom: 0.51cqw;
        }
    }
}

/* CONTENIDO DESPLEGABLE */
.ticket-content {
    background-color: #e66d00;
    color: white;
    padding: 10px 20px 30px 20px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.ticket-content:not(.hidden) {
    max-height: 500px;
    opacity: 1;
}

.ticket-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* --- AFTERMOVIE + PARTNERS WRAPPER (fondo compartido) --- */
.aftermovie-partners-wrapper {
    background-image: url('../img/fondo-aftermovie.webp');
    background-color: #FFC600;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* --- PARTNERS SECTION --- */
.partners-section {
    padding: 20px 40px 70px 40px;
    text-align: center;
}

.partners-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 1.7rem;
    color: var(--color-orange);
    letter-spacing: 4px;
    font-weight: normal;
    text-transform: uppercase;
    border-top: 3px solid #F8E96E;
    border-bottom: 3px solid #F8E96E;
    padding: 5px 0;
    margin-bottom: 25px;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 45px;
    margin-bottom: 20px;
}

.partners-row img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.85;
    transition: opacity 0.2s;
}

.partners-row img:hover {
    opacity: 1;
}

.partners-bottom {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 200px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partners-bottom .partners-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 1200px) {
    .partners-row img {
        height: 60px;
    }
    .partners-label {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 20px 20px 50px 20px;
    }
    .partners-row {
        gap: 20px;
        flex-wrap: wrap;
    }
    .partners-row img {
        height: 65px;
    }
    .partners-row img:nth-child(1) { order: 1; }
    .logo-estrella { order: 2; }
    .partners-row img:nth-child(2) { order: 3; }
    .partners-row img:nth-child(4) { order: 4; }
    .partners-row img:nth-child(5) { order: 5; }
    .partners-row img:nth-child(6) { order: 6; }
    .partners-bottom {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 60px;
    }
    .partners-bottom .partners-label {
        margin-bottom: 10px;
    }
    .partners-label {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 450px) {
    .partners-row img {
        height: 55px;
    }
    .partners-label {
        font-size: 2rem;
    }
}

/* --- AFTERMOVIE SECTION --- */
.aftermovie-section {
    padding: 60px 20px 80px 20px;
}

.aftermovie-div {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    display: block;
}

.aftermovie-title {
    font-family: var(--font-head);
    font-size: 4rem;
    color: var(--color-brown);
    font-weight: normal;
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 8px;
}

.aftermovie-div h4 {
    font-family: var(--font-body);
    font-size: 2rem;
    color: var(--color-brown);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 0;
}

.split-layout {
    display: flex;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    gap: 40px;
}

.text-side {
    width: 35%;
    height: 600px;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-side p {
    font-family: var(--font-body);
    font-size: 1.8rem;
    color: var(--color-brown);
    line-height: 1.3;
    margin-bottom: 25px;
    max-width: 350px;
}

.text-side p:last-of-type {
    font-weight: 700;
    margin-bottom: 30px;
}

.date-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 2.4rem;
    color: #E64A19;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 3px solid #F8E96E;
    border-bottom: 3px solid #F8E96E;
    padding: 8px 0;
    margin-top: 10px;
    padding-top: 1px;
}

.video-side {
    width: 65%;
    display: flex;
    justify-content: flex-start;
}

.video-side iframe {
    width: 100%;
    height: 600px;
    border: 4px solid var(--color-brown);
    border-radius: 4px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- FOOTER / SUSCRIPCIÓN --- */
.main-footer {
    background-color: #FF9800;
    color: var(--color-brown);
    text-align: center;
    padding: 40px 20px;
}

.sub-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

#mc_embed_signup {
    color: var(--color-brown) !important;
}

#mc_embed_signup h2 {
    font-family: var(--font-head) !important;
    font-size: 4rem !important;
    letter-spacing: 8px !important;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--color-brown) !important;
    display: flex;
    justify-content: center;
    font-weight: normal;
}

#mc_embed_signup .subtexto-mf {
    color: var(--color-brown) !important;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 35px;
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
}

#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="email"] {
    border: 2px solid var(--color-brown);
    color: var(--color-brown);
}

/* --- UTILIDADES SOCIALES E IDIOMA --- */
.socials {
    display: flex;
    align-items: center;
}

.socials .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 65px;
    background: rgba(255, 255, 255, 0);
    color: #ffffff;
    text-decoration: none;
    font-size: 32px;
}

.socials .social-link:hover {
    background: rgba(255, 255, 255, 0);
    transform: translateY(-2px);
}

.socials .social-link i {
    pointer-events: none;
}

.socials .social-link svg {
    width: 32px;
    height: 32px;
    pointer-events: none;
}

.lang-select {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 5px 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    margin-left: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3e%3cpath d='M9.293 12.95l.707.707L15.657 8l-1.414-1.414L10 10.828 5.757 6.586 4.343 8z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
    padding-right: 25px;
}

.lang-select:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.lang-select option {
    background-color: var(--color-dark-brown);
    color: var(--color-white);
    padding: 5px;
}

/* --- ESTILOS RESPONSIVE --- */
@media (max-width: 1200px) {
    .lead-text.text-normal {
        font-size: 2rem;
    }

    .lead-text.text-highlight {
        font-size: 2.5rem;
    }

    .split-layout {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .text-side,
    .video-side {
        width: 100%;
    }

    .text-side {
        height: auto;
        justify-content: flex-start;
    }

    .video-side iframe {
        height: 400px;
    }

    .date-tag {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        min-height: auto;
        padding: 10px 0;
        background-size: cover;
        background-position: center;
        overflow-x: hidden;
        margin-bottom: 30px;
    }

    /* --- CORRECCIÓN: Menú móvil que permite bajar elementos --- */
    .top-bar {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 0 10px;
    }

    .top-left,
    .top-right {
        gap: 10px;
        justify-content: center;
        width: 100%;
        font-size: 0.9rem;
    }

    /* --- CORRECCIÓN: Contenedor botones responsive --- */
    .top-right {
        padding-bottom: 60px;
        flex-wrap: wrap;
        /* Permite que si no caben, bajen */
    }

    .top-center {
        position: relative;
        left: auto;
        transform: none;
        top: 0;
        margin: 5px 0;
        width: 100%;
        z-index: 2000;
        text-align: center;
    }

    .top-center a.logo img {
        width: 100px;
    }

    .event-info {
        font-size: 0.8rem;
    }

    /* --- CORRECCIÓN: Botones Rojos Ajustados para móvil --- */
    .btn-top-red {
        background-size: 100% 100%;
        background-position: center;
        max-width: none;
        /* Quitamos límite estricto */
        padding: 8px 15px;
        /* Reducimos relleno */
        font-size: 1.1rem;
        /* Reducimos letra */
        margin: 5px;
        /* Separación entre botones */
    }

    .hero-section {
        min-height: 50vh;
        padding: 40px 20px 60px 20px;
    }

    .aftermovie-section {
        padding: 50px 20px;
    }

    .aftermovie-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .aftermovie-div h4 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .video-side iframe {
        height: 250px;
    }

    .date-tag {
        font-size: 1.5rem;
    }

    #main-footer .logo img {
        width: 100px;
        max-width: 100px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 15px;
    }

    .hero-logo {
        width: 200px;
    }

    .top-center .event-info {
        font-size: 2.5rem;
    }

    /* Ajuste de tamaño fecha */
    .hero-main-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-title-faq {
        font-size: 2.5rem;
    }

    .info-footer h2 {
        font-size: 2.5rem;
    }

    #mc_embed_signup h2 {
        font-size: 2.5rem !important;
        letter-spacing: 4px !important;
    }

    .intro-section {
        margin-top: 0;
        padding: 0px 20px;
        padding-bottom: 50px;
    }

    .lead-text.text-normal {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .lead-text.text-highlight {
        font-size: 1.8rem;
    }

    .legal-container {
        justify-content: center;
        margin-bottom: 20px;
    }

    .grunge-border-bottom {
        max-height: 60px;
    }

    .parrilleros-title {
        font-size: 3rem;
    }
}

@media (max-width: 450px) {

    section,
    .split-layout {
        padding: 30px 15px;
        gap: 20px;
    }

    .top-bar-container {
        padding: 5px 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .top-bar {
        gap: 5px;
    }

    .top-left,
    .top-right {
        justify-content: center;
    }

    .top-left a,
    .top-right a,
    .top-right span {
        font-size: 1rem;
    }

    .top-center a.logo img {
        width: 40px;
    }

    .event-info {
        font-size: 0.7rem;
    }

    .top-center .event-info {
        font-size: 2rem;
    }

    /* Botones ajustados para pantallas muy estrechas */
    .btn-top-red {
        padding: 10px 20px;
        font-size: 1.3rem;
    }

    .hero-section {
        min-height: 40vh;
        padding: 30px 15px 40px 15px;
    }

    .top-right {
        padding-bottom: 30px;
    }

    .hero-main-title {
        font-size: 2rem;
        line-height: 1;
    }

    .hero-cta-text {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-title-faq {
        font-size: 2rem;
    }

    .aftermovie-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    #mc_embed_signup h2 {
        font-size: 2rem !important;
    }

    .info-footer h2 {
        font-size: 2rem;
    }

    .hero-content a,
    .hero-content span {
        padding-top: 0px;
    }

    #main-footer .logo img {
        width: 70px;
    }

    .footer-links {
        gap: 5px;
        padding-bottom: 10px;
        flex-wrap: wrap;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .hero-logo {
        width: 200px;
    }

    .top-center .event-info {
        font-size: 2rem;
    }

    .ticket-top h3 {
        font-size: 2.4rem;
    }

    .ticket-6 .ticket-top h3 {
        font-size: 1.8rem;
    }

    .ticket-price .current {
        font-size: 2.4rem;
    }

    .parrilleros-title {
        font-size: 3rem;
    }

    .parrilleros-subtitle {
        font-size: 1.1rem;
    }

    .tickets-container {
        gap: 10px;
    }
}

/* --- BARRA SUPERIOR APILADA: solo por debajo de 1100px (antes 1600px) --- */
@media (max-width: 1100px) {
    .top-bar-container {
        min-height: auto;
        padding: 10px 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow-x: hidden;
        z-index: 1500;
    }

    .top-bar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        padding: 0 10px;
    }

    .top-left,
    .top-right {
        gap: 5px;
        justify-content: center;
        width: 100%;
        font-size: 0.9rem;
    }

    .top-right {
        padding-bottom: 50px;
    }

    .top-center {
        position: relative;
        left: auto;
        transform: none;
        top: 0;
        margin: 5px 0;
        width: 100%;
        z-index: 2000;
        text-align: center;
    }

    .top-center a.logo img {
        width: 100px;
    }

    .event-info {
        font-size: 2rem;
    }

    .btn-top-red {
        background-size: 100% 100%;
        background-position: center;
        max-width: none;
        padding: 14px 25px;
        font-size: 1.5rem;
    }
}

@media (max-width: 1600px) {

    .hero-section {
        min-height: 50vh;
        padding: 40px 20px 60px 20px;
    }

    #main-footer .logo img {
        width: 200px;
        max-width: 200px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 15px;
    }

    .hero-main-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .hero-logo {
        width: 200px;
    }

    .parrilleros-subtitle {
        font-size: 1.8rem;
    }

    .footer-logo-wrapper {
        padding: 80px 0;
    }

    .footer-logo-wrapper a img {
        width: 300px;
    }
}

.text-early-bird {
    color: #F8E96E;
    font-weight: normal;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    padding: 100px 0;
}

.footer-logo-wrapper a img {
    width: 350px;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo-wrapper a:hover img {
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 20px;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

#main-footer {
    background-color: #DB5200;
}

.info-footer {
    padding-top: 30px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FF9800;
    padding-bottom: 70px;
}

.info-footer h2 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-weight: normal;
    color: #3c1f10;
}

.info-footer h4 {
    padding-top: 40px;
    font-size: 1.5rem;
}

.info-footer a {
    text-decoration: none;
    color: var(--color-dark-brown);
}

::selection {
    background-color: var(--color-orange);
    color: var(--color-white);
}

::-moz-selection {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.aftermovie-div {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

/* =========================================================
   ESTILOS NUEVA PÁGINA DE ENTRADAS (IFRAME)
   ========================================================= */
.entradas-iframe-layout {
    background-color: var(--color-yellow);
    background-image: url('../img/border-texture.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin-top: -60px;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.iframe-page-logo {
    width: 200px;
    max-width: 80%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5000;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.iframe-page-title {
    color: var(--color-brown) !important;
    margin-bottom: 40px;
    text-align: center;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: normal;
    background-image: url('../img/CuadradoNaranja.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    display: inline-block;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 60px;
    padding-right: 60px;
    line-height: 1;
}

/* Ancho de móvil: el iframe hereda su viewport del contenedor, así que
   limitándolo a 430px la pasarela de Tickit renderiza su versión móvil */
.white-iframe-container {
    position: relative;
    width: 100%;
    max-width: 430px;
    height: auto;
    min-height: 400px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.white-iframe-container iframe {
    display: block;
    border-radius: 18px;
}

/* =========================================================
   ESTILOS NUEVOS: CHECKBOX LEGAL Y FORMULARIO (FINAL SIN AZUL)
   ========================================================= */
.legal-container {
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    text-align: left;
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-width: 26px;
    height: 26px;
    background-color: #ffffff;
    border: 3px solid var(--color-brown);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    outline: none;
    transition: all 0.2s ease;
}

.custom-checkbox:checked {
    background-color: #ffffff !important;
    border-color: var(--color-brown);
    accent-color: #ffffff;
}

.custom-checkbox:checked::after {
    content: '✔';
    font-size: 20px;
    color: var(--color-brown);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    line-height: 1;
    display: block;
}

.custom-checkbox:hover {
    border-color: #6d3519;
}

.legal-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-brown);
    line-height: 1.3;
    cursor: pointer;
    font-weight: bold;
    display: block !important;
    padding-top: 2px;
}

#mc_embed_signup input[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(100%);
}

/* =========================================================
   ESTILOS LOADER Y AJUSTE IFRAME (AUTO-ALTURA)
   ========================================================= */
.ticket-loader {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--color-brown);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 50;
    display: block;
}

@keyframes spin {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* REGLAS IFRAME LIMPIAS */
#ticket-iframe {
    width: 100% !important;
    border: none !important;
    overflow: hidden !important;
    transition: height 0.3s ease;
}


/* --- ESTILOS PÁGINA FAQ --- */
.faq-page-section {
    padding: 100px 20px 80px 20px;
    /* Ajuste para no chocar con el header */
    background-color: var(--color-yellow);
    background-image: url('../img/border-texture.webp');
    /* Misma textura que otras secciones */
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    min-height: 80vh;
}

.page-title {
    font-family: var(--font-head);
    font-size: 4rem;
    color: var(--color-brown);
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
    text-transform: uppercase;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-title {
    font-family: var(--font-body);
    font-size: 2.5rem;
    color: #E64A19;
    /* Naranja quemado */
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 3px solid #E64A19;
    display: flex;
    justify-content: center;
}

.faq-item {
    margin-bottom: 15px;
    background-color: #FFC600;
    /* Amarillo suave */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 4px 4px 0px rgba(45, 26, 16, 0.1);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    text-transform: uppercase;
}

.faq-question.active {
    background-color: var(--color-orange);
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    /* La cruz se convierte en X */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.faq-answer p {
    padding: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-brown);
    border-top: 1px dashed var(--color-brown);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .faq-category-title {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
}

/* --- ESTILOS HAMBURGUESA (BASE) --- */
.hamburger {
    display: none;
    /* Oculto en desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: 0.4s;
}

/* Animación a X al abrir */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
}

/* --- CONFIGURACIÓN DEL MENÚ FULL SCREEN (SOLO < 1100px) --- */
@media (max-width: 1100px) {

    .top-left {
        display: flex;
        /* Usamos flex para centrar */
        position: fixed;
        /* Se queda fijo sobre todo */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #E66D00;
        /* Tu color pedido */
        flex-direction: column;
        justify-content: center;
        /* Centrado vertical */
        align-items: center;
        /* Centrado horizontal */
        z-index: 2000;
        /* Por encima de todo */

        /* Animación de entrada: Oculto por defecto */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Cuando el menú está abierto */
    .top-left.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .top-left a {
        width: 80%;
        /* No ocupa todo el ancho para que respire */
        max-width: 400px;
        margin: 0;
        padding: 25px 0;
        font-size: 2rem;
        /* Texto grande y legible */
        font-family: var(--font-head);
        color: white;
        text-align: center;
        text-decoration: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        /* Línea blanca sugerida */
        transition: transform 0.3s ease, color 0.3s ease;

        /* Animación de cascada para los links */
        transform: translateY(20px);
        opacity: 0;
    }

    .top-left.active a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Retraso en la aparición de cada link para efecto "bonito" */
    .top-left.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .top-left.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .top-left.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .top-left a:last-child {
        border-bottom: none;
    }

    .top-left a:hover {
        color: var(--color-yellow);
        transform: scale(1.1);
    }

    /* AJUSTE DEL BOTÓN DE CIERRE (El mismo hamburguesa que se convierte en X) */
    .hamburger {
        display: block;
        z-index: 2100;
        /* Siempre por encima del overlay */
        position: relative;
    }

    /* Si quieres que el botón cambie a color oscuro o blanco según el fondo */
    .hamburger.active span {
        background-color: #ffffff;
    }

    /* Evitar que el cuerpo haga scroll cuando el menú está abierto */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .top-center,
    body.menu-open .socials,
    body.menu-open .btn-top-red,
    body.menu-open .iframe-page-logo {
        /* Añadimos tu logo aquí */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        /* Para que no se pueda hacer click accidentalmente */
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .iframe-page-logo {
        width: 100px;
    }
}

/* Ajuste del icono para que se vea más grande y "bonito" */
.hamburger span {
    width: 35px;
    height: 4px;
    background-color: var(--color-white);
    margin: 6px 0;
    border-radius: 4px;
}

/* Estado DESPLEGADO (cuando tiene la clase .rotated) */
.ticket-footer.rotated {
    background-image: url('../img/fondoIncluyeNaranja.png');
    /* Cambio de imagen solicitado */
}

/* Animación de la flecha */
.arrow-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    width: 18px;
    height: auto;
    transition: transform 0.4s ease;
    /* Esta es la animación de rotación */
}

/* Cuando está abierto, rotamos la imagen 180 grados */
.ticket-footer.rotated .arrow-icon {
    transform: rotate(180deg);
}

/* Eliminamos estas reglas antiguas que ocultaban/mostraban imágenes fijas */
.arrow-up,
.arrow-down {
    display: none !important;
}

/* =========================================================
   SECCIÓN CARRUSEL PARRILLEROS (INDEX)
   ========================================================= */
.carrusel-parrilleros-section {
    background-color: var(--color-yellow);
    background-image: url('../img/fondo_amarillo.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0px 0 0px;
    text-align: center;
    overflow: hidden;
}

/* 1a FASE: el ticker GET TICKETS está oculto, damos aire al final de la sección */
.carrusel-parrilleros-section:has(> .ticker-link[style*="display:none"]),
.carrusel-parrilleros-section:has(> .ticker-link[style*="display: none"]) {
    padding-bottom: 60px;
}

.parrilleros-header {
    max-width: 1200px;
    margin: 0 auto 25px;
}

.parrilleros-title {
    font-size: 4rem;
    color: var(--color-brown);
    margin-bottom: 20px;
}

.parrilleros-subtitle {
    font-family: var(--font-body);
    font-size: 1.6rem;
    color: var(--color-brown);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 400;
}

.parrilleros-subtitle + .parrilleros-subtitle {
    margin-top: 14px;
}

/* --- MARQUEE CAROUSEL INFINITO (CSS puro) --- */
.parrilleros-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.parrilleros-marquee-wrapper.grabbing {
    cursor: grabbing;
}

@keyframes marqueeParrilleros {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.parrilleros-marquee-track {
    display: flex;
    width: max-content;
    /* Permite que el contenido defina el ancho */
    will-change: transform;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.carousel-slide {
    width: 320px;
    flex-shrink: 0;
    margin-right: 25px;
    /* Usamos margen en vez de gap para bucle perfecto */
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.carousel-slide-info {
    padding: 18px 10px 20px;
    text-align: center;
}

.carousel-slide-name {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--color-brown);
    font-weight: normal;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.carousel-slide-subtitle {
    text-transform: uppercase;
}

.carousel-slide-subtitle,
.carousel-slide-desc {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--color-orange);
    font-weight: 700;
    margin-bottom: 2px;
}

/* --- BOTÓN ACCEDE AL CARTEL (estilo ENTRADAS con CuadradoNaranja) --- */
.accede-cartel-btn {
    display: inline-block;
    margin: 20px auto 0;
    padding: 18px 60px;
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 2rem;
    color: var(--color-white);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 3px;
    background-image: url('../img/CuadradoNaranja.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* --- TICKER ANIMADO (FONDO NARANJA SÓLIDO) --- */
.ticker-link {
    text-decoration: none;
    display: block;
    margin-top: 30px;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #F86900;
    /* Naranja sólido */
}

.ticker-row {
    display: flex;
    width: max-content;
    white-space: nowrap;
    overflow: visible;
    margin-bottom: 0px;
    will-change: transform;
    /* Optimización de suavidad */
}

.ticker-row:last-child {
    margin-bottom: 0;
}

.ticker-row span {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 2.6rem;
    color: #9D100D;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 300;
    backface-visibility: hidden;
    /* Evita parpadeos en algunos navegadores */
}



.ticker-row-2 {
    animation: scrollLeft 60s linear infinite;
    display: flex;
    white-space: nowrap;
}



@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================
   PÁGINA PARRILLEROS (GRID)
   ========================================================= */
.parrilleros-page-section {
    padding: 30px 20px 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parrilleros-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.parrilleros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --- TARJETA GRILLER --- */
.griller-card {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Line-up de Buenos Aires: fichas informativas, sin modal ni acordeón */
.griller-card.no-modal {
    cursor: default;
}

/* Rótulo largo de la ficha de próximas confirmaciones */
.griller-card-proximos .griller-name,
.carousel-slide-proximos .carousel-slide-name {
    font-size: 2.2rem;
    line-height: 1.2;
}

.griller-media-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    border: none;
    border-radius: 0;
    transition: border-color 0.4s ease, outline-color 0.3s ease;
    outline: 8px solid transparent;
    outline-offset: -8px;
    /* Dibuja el borde hacia adentro para que no se corte por el overflow:hidden padre */
}

@media (min-width: 769px) {
    .griller-card:hover .griller-media-container {
        outline-color: var(--color-orange);
    }
}

.griller-card.active-griller .griller-media-container {
    border-color: transparent;
}

.griller-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.griller-info {
    padding: 20px 15px;
    text-align: center;
}

.griller-name {
    font-family: var(--font-head);
    font-size: 2rem;
    color: #9D100D;
    font-weight: normal;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.griller-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-orange);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.griller-summary {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-orange);
    font-weight: 700;
    margin-bottom: 2px;
}

.griller-dish {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #9D100D;
    font-weight: 700;
    margin-bottom: 2px;
}

/* --- CONTENIDO EXTENDIDO (ACCORDION - solo móvil) --- */
.griller-extended {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 15px;
    background-color: transparent;
    text-align: center;
}

.griller-card.active-griller .griller-extended {
    max-height: 800px;
    padding: 15px;
}

.griller-extended p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-brown);
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: center;
}

.griller-extended p:last-child {
    margin-bottom: 0;
}

/* --- VIDEO DENTRO DE LA TARJETA --- */
.griller-media-container video.griller-media {
    width: 100%;
    height: 125%;
    object-fit: cover;
    display: block;
}

/* =========================================================
   MODAL PARRILLERO (PC)
   ========================================================= */
.griller-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 125%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 30px;
}

.griller-modal-overlay.modal-visible {
    opacity: 1;
    visibility: visible;
}

.griller-modal {
    background-color: var(--color-yellow);
    background-image: url('../img/fondo_amarillo.webp');
    background-size: cover;
    background-position: center;
    width: 80%;
    max-width: 900px;
    height: auto;
    max-height: 80vh;
    border-radius: 16px;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: row;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 15%;
}

.griller-modal-overlay.modal-visible .griller-modal {
    transform: scale(1);
}

/* Botón de cierre premium */
.griller-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: var(--color-brown);
    border: 3px solid var(--color-orange);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.griller-modal-close:hover {
    background: #D50000;
    border-color: var(--color-white);
    transform: rotate(90deg) scale(1.1);
}

/* Layout del modal: texto izquierda, video derecha */
.modal-info-container {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.modal-text-side {
    flex: 1;
    padding: 100px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-text-side .modal-griller-name {
    font-family: var(--font-head);
    font-size: 2.2rem;
    color: #9D100D;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 12px;
    line-height: 1.1;
}

.modal-text-side .modal-griller-country {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-orange);
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
    text-align: center;
}

.modal-text-side .modal-griller-restaurant {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-orange);
    font-weight: 700;
    margin-bottom: 2px;
    text-align: center;
}

.modal-text-side .modal-griller-dish {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #9D100D;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: center;
}

.modal-text-side .modal-griller-divider {
    width: 40px;
    height: 3px;
    min-height: 3px;
    flex-shrink: 0;
    background: var(--color-brown);
    margin: 20px 0;
}

.modal-text-side .modal-griller-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-brown);
    line-height: 1.55;
    margin-bottom: 15px;
    text-align: center;
}

/* Video side */
.modal-video-side {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 0 16px 16px 0;
}

.modal-video-side video {
    width: 100%;
    height: 125%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.modal-video-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}


/* Ajustes para pantallas de PC más pequeñas (evitar que el modal sea demasiado grande) */
@media screen and (min-width: 768px) and (max-width: 1600px) {
    .griller-modal {
        width: 85%;
        max-height: 85vh;
    }

    .modal-text-side {
        padding: 40px 30px;
    }

    .modal-text-side .modal-griller-name {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .modal-text-side .modal-griller-country,
    .modal-text-side .modal-griller-restaurant,
    .modal-text-side .modal-griller-dish {
        font-size: 0.9rem;
    }

    .modal-text-side .modal-griller-divider {
        margin: 15px 0;
    }

    .modal-text-side .modal-griller-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .modal-video-side {
        min-height: 350px;
    }
}

/* --- PROXIMOS PARRILLEROS --- */
.proximos-container {
    position: relative;
}

.proximos-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-orange);
    mix-blend-mode: multiply;
    opacity: 0.6;
    pointer-events: none;
    border-radius: 8px 8px 0 0;
}

.proximos-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 2;
    pointer-events: none;
}

.proximos-info {
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: var(--color-orange);
    color: white;

}

.proximos-info p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: white;
    margin: 0;
}

.proximos-info a {
    color: var(--color-yellow);
    text-decoration: none;
    font-weight: bold;
}

/* =========================================================
   En escritorio, el acordeón NO se usa (se usa modal)
   ========================================================= */
@media (min-width: 769px) {
    .griller-card.active-griller .griller-extended {
        max-height: 0;
        padding: 0 15px;
    }
}

/* =========================================================
   RESPONSIVE PARRILLEROS
   ========================================================= */
@media (max-width: 1200px) {
    .parrilleros-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .carousel-slide {
        width: 280px;
    }

    .carousel-slide-img {
        height: 350px;
    }
}

@media (max-width: 900px) {
    .parrilleros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .carrusel-parrilleros-section {
        padding: 25px 0px 0 0px;
    }

    .parrilleros-subtitle {
        font-size: 1.2rem;
        margin: 0px 20px;
    }

    .carousel-slide {
        width: 260px;
    }

    .carousel-slide-img {
        height: 320px;
    }

    .accede-cartel-btn {
        font-size: 1.6rem;
        padding: 15px 45px;
        letter-spacing: 2px;
    }

    .ticker-row span {
        font-size: 2.4rem;
        letter-spacing: 2px;
    }

    .parrilleros-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo-wrapper {
        padding: 60px 0;
    }

    .footer-logo-wrapper a img {
        width: 240px;
    }

    .griller-name {
        font-size: 1.7rem;
    }

    .carousel-slide-name {
        font-size: 2.2rem;
    }

    .griller-media-container {
        height: 500px;
    }

    .parrilleros-page-section {
        padding: 20px 15px 60px 15px;
    }

    /* Modal en móvil: no se usa, ocultar */
    .griller-modal-overlay {
        display: none !important;
    }
}

@media (max-width: 450px) {
    .accede-cartel-btn {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .carousel-slide {
        width: 230px;
    }

    .carousel-slide-img {
        height: 280px;
    }

    .carousel-slide-name {
        font-size: 2rem;
    }

    .griller-name {
        font-size: 1.5rem;
    }

    .footer-logo-wrapper {
        padding: 40px 0;
    }

    .footer-logo-wrapper a img {
        width: 180px;
    }

    .ticker-row span {
        font-size: 2.4rem;
    }
}

/* --- MOBILE MENU LOGO AJUSTES --- */
.mobile-menu-logo {
    display: none !important;
    /* Aseguramos que de base no se vea */
}

@media (max-width: 1100px) {
    .top-left.active .mobile-menu-logo {
        display: block !important;
        margin: 0 auto 30px auto;
        width: 30%;
        max-width: 120px;
    }
}

/* --- MENÚ DESKTOP HAMBURGUESA (>1100px) --- */
.desktop-hamburger {
    display: none;
}

@media (min-width: 1100.1px) {
    .desktop-hamburger {
        display: block !important;
    }

    .top-left>a {
        display: none !important;
    }
}

/* --- DESKTOP DRAWER MENU (>1100px) --- */
.desktop-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 100vh;
    background-color: #E66D00;
    /* Color de fondo manteniendo coherencia a #E64A19 */
    z-index: 3000;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
}

.desktop-drawer.open {
    transform: translateX(0);
}

.desktop-drawer-close {
    display: block !important;
    align-self: flex-end;
    margin-bottom: 30px;
}

.desktop-drawer .drawer-logo {
    display: none;
}

.desktop-drawer a {
    font-size: 2.2rem;
    font-family: var(--font-head);
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 25px 0;
    transition: transform 0.3s ease, color 0.3s ease;
    display: block;
    justify-content: center;
}

.desktop-drawer a:last-child {
    border-bottom: none;
}

.desktop-drawer a:hover {
    transform: scale(1.1);
}

@media (max-width: 1100px) {
    .desktop-drawer {
        display: none;
    }
}
/* =========================================================
   FECHA DE LA BARRA SUPERIOR EN LA MAQUETACIÓN APILADA (<=1100px)
   Va al final del archivo para ganar al clamp de la regla base
   (misma especificidad, gana la última).
   ========================================================= */
@media (max-width: 1100px) {
    .top-center .event-info {
        font-size: 2rem;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .top-center .event-info {
        font-size: 2.5rem;
    }
}

@media (max-width: 450px) {
    .top-center .event-info {
        font-size: 2rem;
    }
}

/* --- LISTAS DENTRO DE LAS RESPUESTAS DEL FAQ --- */
.faq-answer ul {
    margin: 0;
    padding: 0 20px 20px 45px;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-brown);
}

.faq-answer ul li {
    margin-bottom: 10px;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}
